home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Utilities / Unix / nvi-1.61-alpha / man / nvi.1
Text File  |  1996-04-16  |  43KB  |  814 lines

  1. EX/VI(1)                     BSD Reference Manual                     EX/VI(1)
  2.  
  3. NNAAMMEE
  4.      eexx,, vvii,, vviieeww - text editors
  5.  
  6. SSYYNNOOPPSSIISS
  7.      eexx [--eeFFRRrrssvv] [--cc _c_m_d] [--tt _t_a_g] [--ww _s_i_z_e] [_f_i_l_e _._._.]
  8.      vvii [--eeFFllRRrrvv] [--cc _c_m_d] [--tt _t_a_g] [--ww _s_i_z_e] [_f_i_l_e _._._.]
  9.      vviieeww [--eeFFRRrrvv] [--cc _c_m_d] [--tt _t_a_g] [--ww _s_i_z_e] [_f_i_l_e _._._.]
  10.  
  11. DDEESSCCRRIIPPTTIIOONN
  12.      VVii is a screen oriented text editor.  EExx is a line-oriented text editor.
  13.      EExx and vvii are different interfaces to the same program, and it is possi-
  14.      ble to switch back and forth during an edit session.  VViieeww is the equiva-
  15.      lent of using the --RR (read-only) option of vvii.
  16.  
  17.      This manual page is the one provided with the nneexx//nnvvii versions of the
  18.      eexx//vvii text editors.  NNeexx//nnvvii are intended as bug-for-bug compatible re-
  19.      placements for the original Fourth Berkeley Software Distribution (4BSD)
  20.      eexx and vvii programs.  For the rest of this manual page, nneexx//nnvvii is used
  21.      only when it's necessary to distinguish it from the historic implementa-
  22.      tions of eexx//vvii.
  23.  
  24.      This manual page is intended for users already familiar with eexx//vvii. Any-
  25.      one else should almost certainly read a good tutorial on the editor be-
  26.      fore this manual page.  If you're in an unfamiliar environment, and you
  27.      absolutely have to get work done immediately, read the section after the
  28.      options description, entitled ``Fast Startup''. It's probably enough to
  29.      get you going.
  30.  
  31.      The following options are available:
  32.  
  33.      --cc      Execute _c_m_d immediately after starting the edit session.  Partic-
  34.              ularly useful for initial positioning in the file, however _c_m_d is
  35.              not limited to positioning commands.  This is the POSIX 1003.2
  36.              interface for the historic ``+cmd'' syntax.  NNeexx//nnvvii supports
  37.              both the old and new syntax.
  38.  
  39.      --ee      Start editing in ex mode, as if the command name were eexx.
  40.  
  41.      --FF      Don't copy the entire file when first starting to edit.  (The de-
  42.              fault is to make a copy in case someone else modifies the file
  43.              during your edit session.)
  44.  
  45.      --ll      Start editing with the lisp and showmatch options set.
  46.  
  47.      --RR      Start editing in read-only mode, as if the command name was vviieeww,
  48.              or the readonly option was set.
  49.  
  50.      --rr      Recover the specified files, or, if no files are specified, list
  51.              the files that could be recovered.  If no recoverable files by
  52.              the specified name exist, the file is edited as if the --rr option
  53.              had not been specified.
  54.  
  55.      --ss      Enter batch mode; applicable only to eexx edit sessions.  Batch
  56.              mode is useful when running eexx scripts.  Prompts, informative
  57.              messages and other user oriented message are turned off, and no
  58.              startup files or environmental variables are read.  This is the
  59.              POSIX 1003.2 interface for the historic ``-'' argument.  NNeexx//nnvvii
  60.              supports both the old and new syntax.
  61.  
  62.      --tt      Start editing at the specified tag.  (See ctags(1)).
  63.  
  64.  
  65.  
  66.      --ww      Set the initial window size to the specified number of lines.
  67.  
  68.      --vv      Start editing in vi mode, as if the command name was vvii or vviieeww.
  69.  
  70.      --XX      Reserved for X11 interfaces.  _N_o _X_1_1 _s_u_p_p_o_r_t _i_s _c_u_r_r_e_n_t_l_y
  71.              _i_m_p_l_e_m_e_n_t_e_d_.
  72.  
  73.      Command input for eexx//vvii is read from the standard input.  In the vvii in-
  74.      terface, it is an error if standard input is not a terminal.  In the eexx
  75.      interface, if standard input is not a terminal, eexx will read commands
  76.      from it regardless, however, the session will be a batch mode session,
  77.      exactly as if the --ss option had been specified.
  78.  
  79.      EExx//vvii exits 0 on success, and greater than 0 if an error occurs.
  80.  
  81. FFAASSTT SSTTAARRTTUUPP
  82.      This section will tell you the minimum amount that you need to do simple
  83.      editing tasks using vvii. If you've never used any screen editor before,
  84.      you're likely to have problems even with this simple introduction.  In
  85.      that case you should find someone that already knows vvii and have them
  86.      walk you through this section.
  87.  
  88.      VVii is a screen editor.  This means that it takes up almost the entire
  89.      screen, displaying part of the file on each screen line, except for the
  90.      last line of the screen.  The last line of the screen is used for you to
  91.      give commands to vvii, and for vvii to give information to you.
  92.  
  93.      The other fact that you need to understand is that vvii is a modeful edi-
  94.      tor, i.e. you are either entering text or you are executing commands, and
  95.      you have to be in the right mode to do one or the other.  You will be in
  96.      command mode when you first start editing a file.  There are commands
  97.      that switch you into input mode.  There is only one key that takes you
  98.      out of input mode, and that is the <escape> key.  (Key names are written
  99.      using less-than and greater-than signs, e.g.  <escape> means the
  100.      ``escape'' key, usually labeled ``esc'' on your terminal's keyboard.)  If
  101.      you're ever confused as to which mode you're in, keep entering the <es-
  102.      cape> key until vvii beeps at you.  (Generally, vvii will beep at you if you
  103.      try and do something that's not allowed.  It will also display error mes-
  104.      sages.)
  105.  
  106.      To start editing a file, enter the command ``vi file_name<carriage-
  107.      return>''. The command you should enter as soon as you start editing is
  108.      ``:set verbose showmode<carriage-return>''. This will make the editor
  109.      give you verbose error messages and display the current mode at the bot-
  110.      tom of the screen.
  111.  
  112.      The commands to move around the file are:
  113.      hh     Move the cursor left one character.
  114.      jj     Move the cursor down one line.
  115.      kk     Move the cursor up one line.
  116.      ll     Move the cursor right one character.
  117.      <<ccuurrssoorr--aarrrroowwss>>
  118.            The cursor arrow keys should work, too.
  119.      //tteexxtt<<ccaarrrriiaaggee--rreettuurrnn>>
  120.            Search for the string ``text'' in the file, and move the cursor to
  121.            its first character.
  122.  
  123.      The commands to enter new text are:
  124.      aa     Append new text, _a_f_t_e_r the cursor.
  125.      ii     Insert new text, _b_e_f_o_r_e the cursor.
  126.      oo     Open a new line below the line the cursor is on, and start entering
  127.            text.
  128.      OO     Open a new line above the line the cursor is on, and start entering
  129.            text.
  130.      <<eessccaappee>>
  131.            Once you've entered input mode using the one of the aa, ii, OO, or oo
  132.            commands, use <<eessccaappee>> to quit entering text and return to command
  133.            mode.
  134.  
  135.      The commands to copy text are:
  136.      yyyy    Copy the line the cursor is on.
  137.      pp     Append the copied line after the line the cursor is on.
  138.  
  139.      The commands to delete text are:
  140.      dddd    Delete the line the cursor is on.
  141.      xx     Delete the character the cursor is on.
  142.  
  143.      The commands to write the file are:
  144.      ::ww<<ccaarrrriiaaggee--rreettuurrnn>>
  145.            Write the file back to the file with the name that you originally
  146.            used as an argument on the vvii command line.
  147.      ::ww ffiillee__nnaammee<<ccaarrrriiaaggee--rreettuurrnn>>
  148.            Write the file back to the file with the name ``file_name''.
  149.  
  150.      The commands to quit editing and exit the editor are:
  151.      ::qq<<ccaarrrriiaaggee--rreettuurrnn>>
  152.            Quit editing and leave vi (if you've modified the file, but not
  153.            saved your changes, vvii will refuse to quit).
  154.      ::qq!!<<ccaarrrriiaaggee--rreettuurrnn>>
  155.            Quit, discarding any modifications that you may have made.
  156.  
  157.      One final caution.  Unusual characters can take up more than one column
  158.      on the screen, and long lines can take up more than a single screen line.
  159.      The above commands work on ``physical'' characters and lines, i.e. they
  160.      affect the entire line no matter how many screen lines it takes up and
  161.      the entire character no matter how many screen columns it takes up.
  162.  
  163. VVII CCOOMMMMAANNDDSS
  164.      The following section describes the commands available in the command
  165.      mode of the vvii editor.  In each entry below, the tag line is a usage syn-
  166.      opsis for the command character.
  167.  
  168.      [[ccoouunntt]] <<ccoonnttrrooll--AA>>
  169.            Search forward count times for the current word.
  170.      [[ccoouunntt]] <<ccoonnttrrooll--BB>>
  171.            Page backwards count screens.
  172.      [[ccoouunntt]] <<ccoonnttrrooll--DD>>
  173.            Scroll forward count lines.
  174.      [[ccoouunntt]] <<ccoonnttrrooll--EE>>
  175.            Scroll forward count lines, leaving the current line and column as
  176.            is, if possible.
  177.      [[ccoouunntt]] <<ccoonnttrrooll--FF>>
  178.            Page forward count screens.
  179.      <<ccoonnttrrooll--GG>>
  180.            Display the file information.
  181.      <<ccoonnttrrooll--HH>>
  182.      [[ccoouunntt]] hh
  183.            Move the cursor back count characters in the current line.
  184.      [[ccoouunntt]] <<ccoonnttrrooll--JJ>>
  185.      [[ccoouunntt]] <<ccoonnttrrooll--NN>>
  186.      [[ccoouunntt]] jj
  187.            Move the cursor down count lines without changing the current col-
  188.            umn.
  189.      <<ccoonnttrrooll--LL>>
  190.      <<ccoonnttrrooll--RR>>
  191.            Repaint the screen.
  192.      [[ccoouunntt]] <<ccoonnttrrooll--MM>>
  193.      [[ccoouunntt]] ++
  194.            Move the cursor down count lines to the first nonblank character of
  195.            that line.
  196.      [[ccoouunntt]] <<ccoonnttrrooll--PP>>
  197.  
  198.      [[ccoouunntt]] kk
  199.            Move the cursor up count lines, without changing the current col-
  200.            umn.
  201.      <<ccoonnttrrooll--TT>>
  202.            Return to the most recent tag context.
  203.      <<ccoonnttrrooll--UU>>
  204.            Scroll backwards count lines.
  205.      <<ccoonnttrrooll--WW>>
  206.            Switch to the next lower screen in the window, or, to the first
  207.            screen if there are no lower screens in the window.
  208.      <<ccoonnttrrooll--YY>>
  209.            Scroll backwards count lines, leaving the current line and column
  210.            as is, if possible.
  211.      <<ccoonnttrrooll--ZZ>>
  212.            Suspend the current editor session.
  213.      <<eessccaappee>>
  214.            Execute eexx commands or cancel partial commands.
  215.      <<ccoonnttrrooll--]]>>
  216.            Push a tag reference onto the tag stack.
  217.      <<ccoonnttrrooll--^^>>
  218.            Switch to the most recently edited file.
  219.      [[ccoouunntt]] <<ssppaaccee>>
  220.      [[ccoouunntt]] ll
  221.            Move the cursor forward count characters without changing the cur-
  222.            rent line.
  223.      [[ccoouunntt]] !! mmoottiioonn sshheellll--aarrgguummeenntt((ss))
  224.            Replace text with results from a shell command.
  225.      [[ccoouunntt]] ## ##||++||--
  226.            Increment or decrement the cursor number.
  227.      [[ccoouunntt]] $$
  228.            Move the cursor to the end of a line.
  229.      %%     Move to the matching character.
  230.      &&     Repeat the previous substitution command on the current line.
  231.      ''<<cchhaarraacctteerr>>
  232.      ``<<cchhaarraacctteerr>>
  233.            Return to a context marked by the character <character>.
  234.      [[ccoouunntt]] ((
  235.            Back up count sentences.
  236.      [[ccoouunntt]] ))
  237.            Move forward count sentences.
  238.      [[ccoouunntt]] ,,
  239.            Reverse find character count times.
  240.      [[ccoouunntt]] --
  241.            Move to first nonblank of the previous line, count times.
  242.      [[ccoouunntt]] ..
  243.            Repeat the last vvii command that modified text.
  244.      //RREE<<ccaarrrriiaaggee--rreettuurrnn>>
  245.      //RREE// [[ooffffsseett]]<<ccaarrrriiaaggee--rreettuurrnn>>
  246.      ??RREE<<ccaarrrriiaaggee--rreettuurrnn>>
  247.      ??RREE?? [[ooffffsseett]]<<ccaarrrriiaaggee--rreettuurrnn>>
  248.      NN
  249.      nn     Search forward or backward for a regular expression.
  250.      00     Move to the first character in the current line.
  251.      :     Execute an ex command.
  252.      [[ccoouunntt]] ;;
  253.            Repeat the last character find count times.
  254.      [[ccoouunntt]] << mmoottiioonn
  255.      [[ccoouunntt]] >> mmoottiioonn
  256.            Shift lines left or right.
  257.      @@ bbuuffffeerr
  258.            Execute a named buffer.
  259.      [[ccoouunntt]] AA
  260.            Enter input mode, appending the text after the end of the line.
  261.      [[ccoouunntt]] BB
  262.  
  263.  
  264.            Move backwards count bigwords.
  265.      [[bbuuffffeerr]] [[ccoouunntt]] CC
  266.            Change text from the current position to the end-of-line.
  267.      [[bbuuffffeerr]] DD
  268.            Delete text from the current position to the end-of-line.
  269.      [[ccoouunntt]] EE
  270.            Move forward count end-of-bigwords.
  271.      [[ccoouunntt]] FF <<cchhaarraacctteerr>>
  272.            Search count times backward through the current line for
  273.            <character>.
  274.      [[ccoouunntt]] GG
  275.            Move to line count, or the last line of the file if count not spec-
  276.            ified.
  277.      [[ccoouunntt]] HH
  278.            Move to the screen line count - 1 lines below the top of the
  279.            screen.
  280.      [[ccoouunntt]] II
  281.            Enter input mode, inserting the text at the beginning of the line.
  282.      [[ccoouunntt]] JJ
  283.            Join lines.
  284.      [[ccoouunntt]] LL
  285.            Move to the screen line count - 1 lines above the bottom of the
  286.            screen.
  287.      MM     Move to the screen line in the middle of the screen.
  288.      [[ccoouunntt]] OO
  289.            Enter input mode, appending text in a new line above the current
  290.            line.
  291.      [[bbuuffffeerr]] PP
  292.            Insert text from a buffer.
  293.      QQ     Exit vvii (or visual) mode and switch to eexx mode.
  294.      [[ccoouunntt]] RR
  295.            Enter input mode, replacing the characters in the current line.
  296.      [[bbuuffffeerr]] [[ccoouunntt]] SS
  297.            Substitute count lines.
  298.      [[ccoouunntt]] TT <<cchhaarraacctteerr>>
  299.            Search backwards, count times, through the current line for the
  300.            character _a_f_t_e_r the specified <character>.
  301.      UU     Restore the current line to its state before the cursor last moved
  302.            to it.
  303.      [[ccoouunntt]] WW
  304.            Move forward count bigwords.
  305.      [[bbuuffffeerr]] [[ccoouunntt]] XX
  306.            Delete count characters before the cursor.
  307.      [[bbuuffffeerr]] [[ccoouunntt]] YY
  308.            Copy (or ``yank'') count lines into the specified buffer.
  309.      ZZZZ    Write the file and exit vvii.
  310.      [[ccoouunntt]] [[[[
  311.            Back up count section boundaries.
  312.      [[ccoouunntt]] ]]]]
  313.            Move forward count section boundaries.
  314.      ^^     Move to first nonblank character on the current line.
  315.      [[ccoouunntt]] __
  316.            Move down count - 1 lines, to the first nonblank character.
  317.      [[ccoouunntt]] aa
  318.            Enter input mode, appending the text after the cursor.
  319.      [[ccoouunntt]] bb
  320.            Move backwards count words.
  321.      [[bbuuffffeerr]] [[ccoouunntt]] cc mmoottiioonn
  322.            Change a region of text.
  323.      [[bbuuffffeerr]] [[ccoouunntt]] dd mmoottiioonn
  324.            Delete a region of text.
  325.      [[ccoouunntt]] ee
  326.            Move forward count end-of-words.
  327.      [[ccoouunntt]] ff<<cchhaarraacctteerr>>
  328.            Search forward, count times, through the rest of the current line
  329.  
  330.            for <character>.
  331.      [[ccoouunntt]] ii
  332.            Enter input mode, inserting the text before the cursor.
  333.      mm <<cchhaarraacctteerr>>
  334.            Save the current context (line and column) as <character>.
  335.      [[ccoouunntt]] oo
  336.            Enter input mode, appending text in a new line under the current
  337.            line.
  338.      [[bbuuffffeerr]] pp
  339.            Append text from a buffer.
  340.      [[ccoouunntt]] rr <<cchhaarraacctteerr>>
  341.            Replace count characters.
  342.      [[bbuuffffeerr]] [[ccoouunntt]] ss
  343.            Substitute count characters in the current line starting with the
  344.            current character.
  345.      [[ccoouunntt]] tt <<cchhaarraacctteerr>>
  346.            Search forward, count times, through the current line for the char-
  347.            acter immediately _b_e_f_o_r_e <character>.
  348.      uu     Undo the last change made to the file.
  349.      [[ccoouunntt]] ww
  350.            Move forward count words.
  351.      [[bbuuffffeerr]] [[ccoouunntt]] xx
  352.            Delete count characters.
  353.      [[bbuuffffeerr]] [[ccoouunntt]] yy mmoottiioonn
  354.            Copy (or ``yank'') a text region specified by the count and motion
  355.            into a buffer.
  356.      [[ccoouunntt11]] zz [[ccoouunntt22]] --||..||++||^^||<<ccaarrrriiaaggee--rreettuurrnn>>
  357.            Redraw, optionally repositioning and resizing the screen.
  358.      [[ccoouunntt]] {{
  359.            Move backward count paragraphs.
  360.      [[ccoouunntt]] ||
  361.            Move to a specific _c_o_l_u_m_n position on the current line.
  362.      [[ccoouunntt]] }}
  363.            Move forward count paragraphs.
  364.      [[ccoouunntt]] ~~
  365.            Reverse the case of the next count character(s).
  366.      [[ccoouunntt]] ~~ mmoottiioonn
  367.            Reverse the case of the characters in a text region specified by
  368.            the count and motion.
  369.      <<iinntteerrrruupptt>>
  370.            Interrupt the current operation.
  371.  
  372. VVII TTEEXXTT IINNPPUUTT CCOOMMMMAANNDDSS
  373.      The following section describes the commands available in the text input
  374.      mode of the vvii editor.
  375.  
  376.      <<nnuull>>
  377.            Replay the previous input.
  378.      <<ccoonnttrrooll--DD>>
  379.            Erase to the previous sshhiiffttwwiiddtthh column boundary.
  380.      ^^<<ccoonnttrrooll--DD>>
  381.            Erase all of the autoindent characters, and reset the autoindent
  382.            level.
  383.      00<<ccoonnttrrooll--DD>>
  384.            Erase all of the autoindent characters.
  385.      <<ccoonnttrrooll--TT>>
  386.            Insert sufficient <tab> and <space> characters to move forward to
  387.            the next sshhiiffttwwiiddtthh column boundary.
  388.      <<eerraassee>>
  389.      <<ccoonnttrrooll--HH>>
  390.            Erase the last character.
  391.      <<lliitteerraall nneexxtt>>
  392.            Quote the next character.
  393.      <<eessccaappee>>
  394.  
  395.  
  396.            Resolve all text input into the file, and return to command mode.
  397.      <<lliinnee eerraassee>>
  398.            Erase the current line.
  399.      <<ccoonnttrrooll--WW>>
  400.      <<wwoorrdd eerraassee>>
  401.            Erase the last word.  The definition of word is dependent on the
  402.            aallttwweerraassee and ttttyywweerraassee options.
  403.      <<ccoonnttrrooll--XX>>[[00--99AA--FFaa--ff]]++
  404.            Insert a character with the specified hexadecimal value into the
  405.            text.
  406.      <<iinntteerrrruupptt>>
  407.            Interrupt text input mode, returning to command mode.
  408.  
  409. EEXX CCOOMMMMAANNDDSS
  410.      The following section describes the commands available in the eexx editor.
  411.      In each entry below, the tag line is a usage synopsis for the command.
  412.  
  413.      <<eenndd--ooff--ffiillee>>
  414.            Scroll the screen.
  415.      !! aarrgguummeenntt((ss))
  416.      [[rraannggee]]!! aarrgguummeenntt((ss))
  417.            Execute a shell command, or filter lines through a shell command.
  418.      ""     A comment.
  419.      [[rraannggee]] nnuu[[mmbbeerr]] [[ccoouunntt]] [[ffllaaggss]]
  420.      [[rraannggee]] ## [[ccoouunntt]] [[ffllaaggss]]
  421.            Display the selected lines, each preceded with its line number.
  422.      @@ bbuuffffeerr
  423.      ** bbuuffffeerr
  424.            Execute a buffer.
  425.      [[rraannggee]] dd[[eelleettee]] [[bbuuffffeerr]] [[ccoouunntt]] [[ffllaaggss]]
  426.            Delete the lines from the file.
  427.      ddii[[ssppllaayy]] bb[[uuffffeerrss]] || ss[[ccrreeeennss]] || tt[[aaggss]]
  428.            Display buffers, screens or tags.
  429.      ee[[ddiitt]][[!!]] [[++ccmmdd]] [[ffiillee]]
  430.      eexx[[!!]] [[++ccmmdd]] [[ffiillee]]
  431.            Edit a different file.
  432.      eexxuu[[ssaaggee]] [[ccoommmmaanndd]]
  433.            Display usage for an eexx command.
  434.      ff[[iillee]] [[ffiillee]]
  435.            Display and optionally change the file name.
  436.      ffgg [[nnaammee]]
  437.            VVii mode only.  Foreground the specified screen.
  438.      [[rraannggee]] gg[[lloobbaall]] //ppaatttteerrnn// [[ccoommmmaannddss]]
  439.      [[rraannggee]] vv //ppaatttteerrnn// [[ccoommmmaannddss]]
  440.            Apply commands to lines matching (or not matching) a pattern.
  441.      hhee[[llpp]]
  442.            Display a help message.
  443.      [[lliinnee]] ii[[nnsseerrtt]][[!!]]
  444.            The input text is inserted before the specified line.
  445.      [[rraannggee]] jj[[ooiinn]][[!!]] [[ccoouunntt]] [[ffllaaggss]]
  446.            Join lines of text together.
  447.      [[rraannggee]] ll[[iisstt]] [[ccoouunntt]] [[ffllaaggss]]
  448.            Display the lines unambiguously.
  449.      mmaapp[[!!]] [[llhhss rrhhss]]
  450.            Define or display maps (for vvii only).
  451.      [[lliinnee]] mmaa[[rrkk]] <<cchhaarraacctteerr>>
  452.      [[lliinnee]] kk <<cchhaarraacctteerr>>
  453.            Mark the line with the mark <character>.
  454.      [[rraannggee]] mm[[oovvee]] lliinnee
  455.            Move the specified lines after the target line.
  456.      mmkk[[eexxrrcc]][[!!]] ffiillee
  457.            Write the abbreviations, editor options and maps to the specified
  458.            file.
  459.      nn[[eexxtt]][[!!]] [[ffiillee ......]]
  460.  
  461.  
  462.            Edit the next file from the argument list.
  463.      [[lliinnee]] oo[[ppeenn]] //ppaatttteerrnn// [[ffllaaggss]]
  464.            Enter open mode.
  465.      pprree[[sseerrvvee]]
  466.            Save the file in a form that can later be recovered using the eexx --rr
  467.            option.
  468.      pprreevv[[iioouuss]][[!!]]
  469.            Edit the previous file from the argument list.
  470.      [[rraannggee]] pp[[rriinntt]] [[ccoouunntt]] [[ffllaaggss]]
  471.            Display the specified lines.
  472.      [[lliinnee]] ppuu[[tt]] [[bbuuffffeerr]]
  473.            Append buffer contents to the current line.
  474.      qq[[uuiitt]][[!!]]
  475.            End the editing session.
  476.      [[lliinnee]] rr[[eeaadd]][[!!]] [[ffiillee]]
  477.            Read a file.
  478.      rreecc[[oovveerr]] ffiillee
  479.            Recover file if it was previously saved.
  480.      rreess[[iizzee]] [[++||--]]ssiizzee
  481.            VVii mode only.  Grow or shrink the current screen.
  482.      rreeww[[iinndd]][[!!]]
  483.            Rewind the argument list.
  484.      ssee[[tt]] [[ooppttiioonn[[==[[vvaalluuee]]]] ......]] [[nnooooppttiioonn ......]] [[ooppttiioonn?? ......]] [[aallll]]
  485.            Display or set editor options.
  486.      sshh[[eellll]]
  487.            Run a shell program.
  488.      ssoo[[uurrccee]] ffiillee
  489.            Read and execute eexx commands from a file.
  490.      [[rraannggee]] ss[[uubbssttiittuuttee]] [[//ppaatttteerrnn//rreeppllaaccee//]] [[ooppttiioonnss]] [[ccoouunntt]] [[ffllaaggss]]
  491.      [[rraannggee]] && [[ooppttiioonnss]] [[ccoouunntt]] [[ffllaaggss]]
  492.      [[rraannggee]] ~~ [[ooppttiioonnss]] [[ccoouunntt]] [[ffllaaggss]]
  493.            Make substitutions.
  494.      ssuu[[ssppeenndd]][[!!]]
  495.      sstt[[oopp]][[!!]]
  496.      <<ssuussppeenndd>>
  497.            Suspend the edit session.
  498.      ttaa[[gg]][[!!]] ttaaggssttrriinngg
  499.            Edit the file containing the specified tag.
  500.      ttaaggpp[[oopp]][[!!]] [[ffiillee || nnuummbbeerr]]
  501.            Pop to the specified tag in the tags stack.
  502.      uunnmm[[aapp]][[!!]] llhhss
  503.            Unmap a mapped string.
  504.      vvee[[rrssiioonn]]
  505.            Display the version of the eexx//vvii editor.
  506.      [[lliinnee]] vvii[[ssuuaall]] [[ttyyppee]] [[ccoouunntt]] [[ffllaaggss]]
  507.            EExx mode only.  Enter vvii.
  508.      vvii[[ssuuaall]][[!!]] [[++ccmmdd]] [[ffiillee]]
  509.            VVii mode only.  Edit a new file.
  510.      vviiuu[[ssaaggee]] [[ccoommmmaanndd]]
  511.            Display usage for a vvii command.
  512.      [[rraannggee]] ww[[rriittee]][[!!]] [[>>>>]] [[ffiillee]]
  513.      [[rraannggee]] ww[[rriittee]] [[!!]] [[ffiillee]]
  514.      [[rraannggee]] wwnn[[!!]] [[>>>>]] [[ffiillee]]
  515.      [[rraannggee]] wwqq[[!!]] [[>>>>]] [[ffiillee]]
  516.            Write the file.
  517.      [[rraannggee]] xx[[iitt]][[!!]] [[ffiillee]]
  518.            Write the file if it has been modified.
  519.      [[rraannggee]] yyaa[[nnkk]] [[bbuuffffeerr]] [[ccoouunntt]]
  520.            Copy the specified lines to a buffer.
  521.      [[lliinnee]] zz [[ttyyppee]] [[ccoouunntt]] [[ffllaaggss]]
  522.            Adjust the window.
  523.  
  524. SSEETT OOPPTTIIOONNSS
  525.      There are a large number of options that may be set (or unset) to change
  526.      the editor's behavior.  This section describes the options, their abbre-
  527.      viations and their default values.
  528.  
  529.      In each entry below, the first part of the tag line is the full name of
  530.      the option, followed by any equivalent abbreviations.  The part in square
  531.      brackets is the default value of the option.  Most of the options are
  532.      boolean, i.e. they are either on or off, and do not have an associated
  533.      value.
  534.  
  535.      Options apply to both eexx and vvii modes, unless otherwise specified.
  536.  
  537.      aallttwweerraassee [[ooffff]]
  538.            VVii only.  Select an alternate word erase algorithm.
  539.      aauuttooiinnddeenntt,, aaii [[ooffff]]
  540.            Automatically indent new lines.
  541.      aauuttoopprriinntt,, aapp [[ooffff]]
  542.            EExx only.  Display the current line automatically.
  543.      aauuttoowwrriittee,, aaww [[ooffff]]
  544.            Write modified files automatically when changing files.
  545.      bbaacckkuupp [[""""]]
  546.            Backup files before they are overwritten.
  547.      bbeeaauuttiiffyy,, bbff [[ooffff]]
  548.            Discard control characters.
  549.      ccddppaatthh [[eennvviirroonnmmeenntt vvaarriiaabbllee CCDDPPAATTHH,, oorr ccuurrrreenntt ddiirreeccttoorryy]]
  550.            The directory paths used as path prefixes for the ccdd command.
  551.      ccoolluummnnss,, ccoo [[8800]]
  552.            Set the number of columns in the screen.
  553.      ccoommmmeenntt [[ooffff]]
  554.            VVii only.  Skip leading comments in files.
  555.      ddiirreeccttoorryy,, ddiirr [[eennvviirroonnmmeenntt vvaarriiaabbllee TTMMPPDDIIRR,, oorr //ttmmpp]]
  556.            The directory where temporary files are created.
  557.      eeddccoommppaattiibbllee,, eedd [[ooffff]]
  558.            Remember the values of the ``c'' and ``g'' suffices to the
  559.            ssuubbssttiittuuttee commands, instead of initializing them as unset for each
  560.            new command.
  561.      eerrrroorrbbeellllss,, eebb [[ooffff]]
  562.            EExx only.  Announce error messages with a bell.
  563.      eexxrrcc,, eexx [[ooffff]]
  564.            Never read startup files in the local directory.
  565.      eexxtteennddeedd [[ooffff]]
  566.            Regular expressions are extended (i.e.  egrep(1) style) expres-
  567.            sions.
  568.      ffiilleecc [[ooffff]]
  569.            Cause the <tab> character to perform file path completion on the
  570.            colon command line.
  571.      ffllaasshh [[oonn]]
  572.            Flash the screen instead of beeping the keyboard on error.
  573.      hhaarrddttaabbss,, hhtt [[88]]
  574.            Set the spacing between hardware tab settings.
  575.      iiggnnoorreeccaassee,, iicc [[ooffff]]
  576.            Ignore case differences in regular expressions.
  577.      kkeeyyttiimmee [[66]]
  578.            The 10th's of a second eexx//vvii waits for a subsequent key to complete
  579.            a key mapping.
  580.      lleeffttrriigghhtt [[ooffff]]
  581.            VVii only.  Do left-right scrolling.
  582.      lliinneess,, llii [[2244]]
  583.            VVii only.  Set the number of lines in the screen.
  584.      lliisspp [[ooffff]]
  585.            VVii only.  Modify various search commands and options to work with
  586.            Lisp.
  587.  
  588.            _T_h_i_s _o_p_t_i_o_n _i_s _n_o_t _y_e_t _i_m_p_l_e_m_e_n_t_e_d_.
  589.      lliisstt [[ooffff]]
  590.            Display lines in an unambiguous fashion.
  591.      lloocckk [[oonn]]
  592.            Attempt to get an exclusive lock on any file being edited, read or
  593.  
  594.            written.
  595.      mmaaggiicc [[oonn]]
  596.            Treat certain characters specially in regular expressions.
  597.      mmaattcchhttiimmee [[77]]
  598.            VVii only.  The 10th's of a second eexx//vvii pauses on the matching char-
  599.            acter when the sshhoowwmmaattcchh option is set.
  600.      mmeessgg [[oonn]]
  601.            Permit messages from other users.
  602.      mmooddeelliinneess,, mmooddeelliinnee [[ooffff]]
  603.            Read the first and last few lines of each file for eexx commands.
  604.  
  605.            _T_h_i_s _o_p_t_i_o_n _w_i_l_l _n_e_v_e_r _b_e _i_m_p_l_e_m_e_n_t_e_d_.
  606.      nnoopprriinntt [[""""]]
  607.            Characters that are never handled as printable characters.
  608.      nnuummbbeerr,, nnuu [[ooffff]]
  609.            Precede each line displayed with its current line number.
  610.      ooccttaall [[ooffff]]
  611.            Display unknown characters as octal numbers, instead of the default
  612.            hexadecimal.
  613.      ooppeenn [[oonn]]
  614.            EExx only.  If this option is not set, the ooppeenn and vviissuuaall commands
  615.            are disallowed.
  616.      ooppttiimmiizzee,, oopptt [[oonn]]
  617.            VVii only.  Optimize text throughput to dumb terminals.
  618.  
  619.            _T_h_i_s _o_p_t_i_o_n _i_s _n_o_t _y_e_t _i_m_p_l_e_m_e_n_t_e_d_.
  620.      ppaarraaggrraapphhss,, ppaarraa [[IIPPLLPPPPPPQQPPPP LLIIppppllppiippbbpp]]
  621.            VVii only.  Define additional paragraph boundaries for the {{ and }}
  622.            commands.
  623.      pprriinntt [[""""]]
  624.            Characters that are always handled as printable characters.
  625.      pprroommpptt [[oonn]]
  626.            EExx only.  Display a command prompt.
  627.      rreeaaddoonnllyy,, rroo [[ooffff]]
  628.            Mark the file as read-only.
  629.      rreeccddiirr [[//vvaarr//ttmmpp//vvii..rreeccoovveerr]]
  630.            The directory where recovery files are stored.
  631.      rreeddrraaww,, rree [[ooffff]]
  632.            VVii only.  Simulate an intelligent terminal on a dumb one.
  633.  
  634.            _T_h_i_s _o_p_t_i_o_n _i_s _n_o_t _y_e_t _i_m_p_l_e_m_e_n_t_e_d_.
  635.      rreemmaapp [[oonn]]
  636.            Remap keys until resolved.
  637.      rreeppoorrtt [[55]]
  638.            Set the number of lines about which the editor reports changes or
  639.            yanks.
  640.      rruulleerr [[ooffff]]
  641.            VVii only.  Display a row/column ruler on the colon command line.
  642.      ssccrroollll,, ssccrr [[wwiinnddooww // 22]]
  643.            Set the number of lines scrolled.
  644.      sseeccttiioonnss,, sseecctt [[NNHHSSHHHH HHUUnnhhsshh]]
  645.            VVii only.  Define additional section boundaries for the [[[[ and ]]]]
  646.            commands.
  647.      sshheellll,, sshh [[eennvviirroonnmmeenntt vvaarriiaabbllee SSHHEELLLL,, oorr //bbiinn//sshh]]
  648.            Select the shell used by the editor.
  649.      sshheellllmmeettaa [[~~{{[[**??$$``''""\\]]
  650.            Set the meta characters checked to determine if file name expansion
  651.            is necessary.
  652.      sshhiiffttwwiiddtthh,, ssww [[88]]
  653.            Set the autoindent and shift command indentation width.
  654.      sshhoowwmmaattcchh,, ssmm [[ooffff]]
  655.            VVii only.  Note matching ``{'' and ``('' for ``}'' and ``)'' charac-
  656.            ters.
  657.      sshhoowwmmooddee [[ooffff]]
  658.  
  659.  
  660.            VVii only.  Display the current editor mode and a ``modified'' flag.
  661.      ssiiddeessccrroollll [[1166]]
  662.            VVii only.  Set the amount a left-right scroll will shift.
  663.      sslloowwooppeenn,, ssllooww [[ooffff]]
  664.            Delay display updating during text input.
  665.  
  666.            _T_h_i_s _o_p_t_i_o_n _i_s _n_o_t _y_e_t _i_m_p_l_e_m_e_n_t_e_d_.
  667.      ssoouurrcceeaannyy [[ooffff]]
  668.            Read startup files not owned by the current user.
  669.  
  670.            _T_h_i_s _o_p_t_i_o_n _w_i_l_l _n_e_v_e_r _b_e _i_m_p_l_e_m_e_n_t_e_d_.
  671.      ttaabbssttoopp,, ttss [[88]]
  672.            This option sets tab widths for the editor display.
  673.      ttaagglleennggtthh,, ttll [[00]]
  674.            Set the number of significant characters in tag names.
  675.      ttaaggss,, ttaagg [[ttaaggss //vvaarr//ddbb//lliibbcc..ttaaggss //ssyyss//kkeerrnn//ttaaggss]]
  676.            Set the list of tags files.
  677.      tteerrmm,, ttttyyttyyppee,, ttttyy [[eennvviirroonnmmeenntt vvaarriiaabbllee TTEERRMM]]
  678.            Set the terminal type.
  679.      tteerrssee [[ooffff]]
  680.            This option has historically made editor messages less verbose.  It
  681.            has no effect in this implementation.
  682.      ttiillddeeoopp
  683.            Modify the ~~ command to take an associated motion.
  684.      ttiimmeeoouutt,, ttoo [[oonn]]
  685.            Time out on keys which may be mapped.
  686.      ttttyywweerraassee [[ooffff]]
  687.            VVii only.  Select an alternate erase algorithm.
  688.      vveerrbboossee [[ooffff]]
  689.            only.  Display an error message for every error.
  690.      ww330000 [[nnoo ddeeffaauulltt]]
  691.            VVii only.  Set the window size if the baud rate is less than 1200
  692.            baud.
  693.      ww11220000 [[nnoo ddeeffaauulltt]]
  694.            VVii only.  Set the window size if the baud rate is equal to 1200
  695.            baud.
  696.      ww99660000 [[nnoo ddeeffaauulltt]]
  697.            VVii only.  Set the window size if the baud rate is greater than 1200
  698.            baud.
  699.      wwaarrnn [[oonn]]
  700.            EExx only.  This option causes a warning message to the terminal if
  701.            the file has been modified, since it was last written, before a !!
  702.            command.
  703.      wwiinnddooww,, ww,, wwii [[eennvviirroonnmmeenntt vvaarriiaabbllee LLIINNEESS]]
  704.            Set the window size for the screen.
  705.      wwrraapplleenn,, wwll [[00]]
  706.            VVii only.  Break lines automatically, the specified number of
  707.            columns from the left-hand margin.
  708.      wwrraappmmaarrggiinn,, wwmm [[00]]
  709.            VVii only.  Break lines automatically, the specified number of
  710.            columns from the right-hand margin.
  711.      wwrraappssccaann,, wwss [[oonn]]
  712.            Set searches to wrap around the end or beginning of the file.
  713.      wwrriitteeaannyy,, wwaa [[ooffff]]
  714.            Turn off file-overwriting checks.
  715.  
  716. EENNVVIIRROONNMMEENNTTAALL VVAARRIIAABBLLEESS
  717.      COLUMNS    The number of columns on the screen.  This value overrides any
  718.                 system or terminal specific values.  If the COLUMNS environ-
  719.                 mental variable is not set when eexx//vvii runs, or the ccoolluummnnss op-
  720.                 tion is explicitly reset by the user, eexx//vvii enters the value
  721.                 into the environment.
  722.      EXINIT     A list of eexx startup commands, read if the variable NEXINIT is
  723.                 not set.
  724.      HOME       The user's home directory, used as the initial directory path
  725.                 for the startup _$_H_O_M_E_/_._n_e_x_r_c and _$_H_O_M_E_/_._e_x_r_c files.  This val-
  726.                 ue is also used as the default directory for the vvii ccdd com-
  727.                 mand.
  728.      LINES      The number of rows on the screen.  This value overrides any
  729.                 system or terminal specific values.  If the LINES environmen-
  730.                 tal variable is not set when eexx//vvii runs, or the lliinneess option
  731.                 is explicitly reset by the user, eexx//vvii enters the value into
  732.                 the environment.
  733.      NEXINIT    A list of eexx startup commands.
  734.      SHELL      The user's shell of choice (see also the sshheellll option).
  735.      TERM       The user's terminal type.  The default is the type
  736.                 ``unknown''. If the TERM environmental variable is not set
  737.                 when eexx//vvii runs, or the tteerrmm option is explicitly reset by the
  738.                 user, eexx//vvii enters the value into the environment.
  739.      TMPDIR     The location used to stored temporary files (see also the
  740.                 ddiirreeccttoorryy option).
  741.  
  742. AASSYYNNCCHHRROONNOOUUSS EEVVEENNTTSS
  743.      SIGALRM     VVii//eexx uses this signal for periodic backups of file modifica-
  744.                  tions and to display ``busy'' messages when operations are
  745.                  likely to take a long time.
  746.      SIGHUP
  747.      SIGTERM     If the current buffer has changed since it was last written
  748.                  in its entirety, the editor attempts to save the modified
  749.                  file so it can be later recovered.  See the vvii//eexx Reference
  750.                  manual section entitled ``Recovery'' for more information.
  751.      SIGINT      When an interrupt occurs, the current operation is halted,
  752.                  and the editor returns to the command level.  If interrupted
  753.                  during text input, the text already input is resolved into
  754.                  the file as if the text input had been normally terminated.
  755.      SIGWINCH    The screen is resized.  See the vvii//eexx Reference manual sec-
  756.                  tion entitled ``Sizing the Screen'' for more information.
  757.      SIGCONT
  758.      SIGQUIT
  759.      SIGTSTP     VVii//eexx ignores these signals.
  760.  
  761. BBUUGGSS
  762.      See the file _n_v_i_/_d_o_c_s_/_b_u_g_s_._c_u_r_r_e_n_t for a list of the known bugs in this
  763.      version.
  764.  
  765. FFIILLEESS
  766.      /bin/sh              The default user shell.
  767.      /etc/vi.exrc         System-wide vi startup file.
  768.      /tmp                 Temporary file directory.
  769.      /var/tmp/vi.recover  The default recovery file directory.
  770.      $HOME/.nexrc         1st choice for user's home directory startup file.
  771.      $HOME/.exrc          2nd choice for user's home directory startup file.
  772.      .nexrc               1st choice for local directory startup file.
  773.      .exrc                2nd choice for local directory startup file.
  774.  
  775. SSEEEE AALLSSOO
  776.      ctags(1),  more(1),  curses(3),  dbopen(3)
  777.  
  778.      The ``Vi Quick Reference'' card.
  779.  
  780.      ``An Introduction to Display Editing with Vi'', found in the ``UNIX
  781.      User's Manual Supplementary Documents'' section of both the 4.3BSD and
  782.      4.4BSD manual sets.  This document is the closest thing available to an
  783.      introduction to the vvii screen editor.
  784.  
  785.      ``Ex Reference Manual (Version 3.7)'', found in the ``UNIX User's Manual
  786.      Supplementary Documents'' section of both the 4.3BSD and 4.4BSD manual
  787.      sets.  This document is the final reference for the eexx editor, as dis-
  788.      tributed in most historic 4BSD and System V systems.
  789.  
  790.      ``Edit: A tutorial'', found in the ``UNIX User's Manual Supplementary
  791.      Documents'' section of the 4.3BSD manual set.  This document is an intro-
  792.      duction to a simple version of the eexx screen editor.
  793.  
  794.      ``Ex/Vi Reference Manual'', found in the ``UNIX User's Manual
  795.      Supplementary Documents'' section of the 4.4BSD manual set.  This docu-
  796.      ment is the final reference for the nneexx//nnvvii text editors, as distributed
  797.      in 4.4BSD and 4.4BSD-Lite.
  798.  
  799.      RRooffff source for all of these documents is distributed with nneexx//nnvvii in the
  800.      _n_v_i_/_U_S_D_._d_o_c directory of the nneexx//nnvvii source code.
  801.  
  802.      The files ``autowrite'', ``input'', ``quoting'', and ``structures'',
  803.      found in the _n_v_i_/_d_o_c_s_/_i_n_t_e_r_n_a_l_s directory of the nneexx//nnvvii source code.
  804.  
  805. HHIISSTTOORRYY
  806.      The nneexx//nnvvii replacements for the eexx//vvii editor first appeared in 4.4BSD.
  807.  
  808. SSTTAANNDDAARRDDSS
  809.      NNeexx//nnvvii is close to IEEE Std1003.2 (``POSIX'').  That document differs
  810.      from historical eexx//vvii practice in several places; there are changes to be
  811.      made on both sides.
  812.  
  813. BSDI BSD/OS                    December 1, 1995                             13
  814.